html, body {
    margin: 0;
    padding: 0;
    background-color: #000;
}

body {
    background-image: url("../images/2023/mar/03/P1370264.jpg");
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#grid {
    display: grid;
    grid-template-rows: repeat(20, 110px);
    grid-template-columns: repeat(20, 95px);
    top: 0;
    left: 0;
}

#grid>* {
    display: flex;
    z-index: 0;
    transform: scale(0.75);
    text-align: center;
    word-wrap: break-word;
    text-overflow: ellipsis;
    align-content: baseline;
    text-shadow: 0 0 0.2em #000;
}

#grid>*>div {
    position: absolute;
    top: 0;
    transform: scale(0.8);
    width: 100%;
    aspect-ratio: 1;
    background-size: contain;
}

#grid>*>span {
    position: absolute;
    font-size: 16px;
    bottom: 0;
    width: 100%;
    user-select: none;
    pointer-events: none;
}

#grid>*:hover {
    background-color: #ebf5fc44;
    border: 1px solid #f0f7fd55 inset;
    border-radius: 1px;
}